home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ Yahoo Messenger 2.xpl < prev    next >
Text File  |  2000-08-07  |  1KB  |  54 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Instant Messaging\Yahoo Messenger"
  5. "NAME"="General Settings"
  6. "VERSION"="1.09"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"=""RETURN" sends new message"
  9. "DESCRIPTION 1"="This setting determines if Yahoo! Messenger drops to the next line in Instant Message windows when ENTER or RETURN is pressed."
  10. "DESCRIPTION 2"="If checked, the ENTER or RETURN key will send what you have typed immediately.  If unchecked, it will drop to the next line."
  11. "DESCRIPTION 3"="Select your preference by checking or unchecking the box above and clicking 'Apply Changes.'"
  12. "DESCRIPTION 4"="Yahoo! Messenger may be obtained at http://messenger.yahoo.com/."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17. "COMMENT 2"="Thanks to CptSiskoX for the settings, the idea and his help."
  18.  
  19.  
  20. sP="HKCU\Software\Yahoo\Pager\"
  21. sV1="IM Enter Sends Message"
  22. Sub Plugin_Initialize 
  23.  if RegPathExists(sP) then
  24.     i=RegReadValue(sP & sV1)
  25.     if i=1 then SetUiElement 1,true
  26.  else
  27.     Call Disable()
  28.  end if
  29. End Sub
  30.  
  31.  
  32. Sub Plugin_CheckData(ElementIndex)
  33. End Sub
  34.  
  35.  
  36.  
  37. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  38.  b=GetUIElement(1)
  39.  if b=true then
  40.     i="1"
  41.  else
  42.     i="0"
  43.  end if
  44.  Call RegWriteValue(sP & sV1,i,2)
  45.  
  46. End Sub
  47.  
  48.  
  49. Sub Plugin_Terminate 
  50. End Sub
  51.  
  52.  
  53.  
  54.